home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-21 | 840 b | 32 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWCharac.cpp
- // Release Version: $ 1.0d1 $
- //
- // Creation Date: 3/28/94
- //
- // Copyright: © 1994 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWCHARAC_H
- #include "FWCharac.h"
- #endif
-
- #pragma segment Strings
-
- //----------------------------------------------------------------------------------------
- // FW_StringLength
- //----------------------------------------------------------------------------------------
-
- FW_CharacterCount FW_StringLength(const FW_Char * string)
- {
- // ???JEL - Needs to be internationalized.
- register const FW_Char * s = string;
- const FW_Char nul = 0;
- while (*s++ != nul)
- {}
- return (s - string - 1);
- }
-
-